home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Dec / di9812me / PluginSample / 2 / plugin1 / plugin1.dpr < prev    next >
Encoding:
Text File  |  1998-03-23  |  801 b   |  28 lines

  1. library Plugin1;
  2.  
  3. { Important note about DLL memory management: ShareMem must be the
  4.   first unit in your library's USES clause AND your project's (select
  5.   View-Project Source) USES clause if your DLL exports any procedures or
  6.   functions that pass strings as parameters or function results. This
  7.   applies to all strings passed to and from your DLL--even those that
  8.   are nested in records and classes. ShareMem is the interface unit to
  9.   the DELPHIMM.DLL shared memory manager, which must be deployed along
  10.   with your DLL. To avoid using DELPHIMM.DLL, pass string information
  11.   using PChar or ShortString parameters. }
  12.  
  13. uses
  14.   Sharemem,
  15.   SysUtils,
  16.   Classes,
  17.   common in '..\Common\common.pas',
  18.   main in 'main.pas';
  19.  
  20. {$E plg}
  21.  
  22. exports
  23.     DescribePlugin;
  24.  
  25. begin
  26.  
  27. end.
  28.